home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 241_01 / weather.hs < prev    next >
Text File  |  1987-08-29  |  896b  |  34 lines

  1. /*
  2. HEADER:         CUG241;
  3. TITLE:          Simple weather predictor expert system to demonstrate
  4.                 the IFRUN, ANDTHENRUN, etc., keywords. 
  5. DATE:           12/30/85;
  6. VERSION:
  7. DESCRIPTION:   "Source code for a simple Expert System.";
  8. KEYWORDS:       Artificial Intelligence, expert systems, weather predictor;
  9. SYSTEM:         MS-DOS or UNIX System V;
  10. FILENAME:       WEATHER.H;
  11. WARNINGS:      "User-supported, non-commercial"
  12. AUTHORS:        George Hageman; 
  13. COMPILERS:      Microsoft C V3.00 or UNIX System V Portable C Compiler;
  14. REFERENCES:     ;
  15. ENDREF
  16. */
  17.  
  18. #define    NORTH        1
  19. #define NORTH_EAST    2
  20. #define EAST        3
  21. #define SOUTH_EAST    4
  22. #define SOUTH        5
  23. #define SOUTH_WEST    6
  24. #define WEST        7
  25. #define NORTH_WEST    8
  26.  
  27. #define STEADY        1
  28. #define RISE_SLOW    2
  29. #define RISE_FAST    3
  30. #define FALL_SLOW    4
  31. #define FALL_FAST    5
  32.  
  33.  
  34.